home *** CD-ROM | disk | FTP | other *** search
- #ifndef _PROGRAM_GLOBALS_H_
- #define _PROGRAM_GLOBALS_H_
-
- #define CREATOR 'BrLr'
- #define APPLICATION_NAME "\pBrailler"
- #define SAVE_TYPE 'TEXT'
- #define SAVE_VERSION 1
-
- enum
- {
- kAboutWindow=0, /* about box */
- kAboutMSGWindow, /* "About MSG" splash screen */
- kOtherMSGWindow, /* other MSG products window */
- kHelpWindow, /* help window */
- kMainWindow, /* main graphics window */
- kFloatingWindow
- };
-
- enum ErrorTypes
- {
- allsWell=0,
-
- /* shell errors */
- kNoMemory,
- kNoMemoryAndQuitting,
- kProgramIntegrityNotVerified,
- kProgramIntegritySet,
- kSystemTooOld,
- userCancelErr,
-
- kCantCreateFile,
- kCantOpenFileToSave,
- kDiskFull,
- kCantWriteFile,
- kCantOpenFileToLoad,
- kCantLoadFile
- };
-
- extern short gGrade;
-
- #endif
-